Stored Procedures [dbo].[BAEOrderProductCategoryLookupInsert]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@OrderProductIDint4
@OrderCategoryIDint4
@IsFeaturedbit1
@SortOrderint4
SQL Script
create procedure [dbo].[BAEOrderProductCategoryLookupInsert] @OrderProductID as
int,
    @OrderCategoryID AS int,
    @IsFeatured AS bit,
    @SortOrder AS int
AS
    INSERT INTO OrderProductCategoryLookup
    (    
    OrderProductID,            
    OrderCategoryID,            
    IsFeatured,                
    SortOrder        
    )
    VALUES
    (    
    @OrderProductID,            
    @OrderCategoryID,            
    @IsFeatured,                
    @SortOrder
    );

GO
Uses